// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Code generated by the FlatBuffers compiler. DO NOT EDIT.

package flatbuf

import (
	flatbuffers 
)

type DictionaryEncoding struct {
	_tab flatbuffers.Table
}

func ( []byte,  flatbuffers.UOffsetT) *DictionaryEncoding {
	 := flatbuffers.GetUOffsetT([:])
	 := &DictionaryEncoding{}
	.Init(, +)
	return 
}

func ( *DictionaryEncoding) ( []byte,  flatbuffers.UOffsetT) {
	._tab.Bytes = 
	._tab.Pos = 
}

func ( *DictionaryEncoding) () flatbuffers.Table {
	return ._tab
}

// / The known dictionary id in the application where this data is used. In
// / the file or streaming formats, the dictionary ids are found in the
// / DictionaryBatch messages
func ( *DictionaryEncoding) () int64 {
	 := flatbuffers.UOffsetT(._tab.Offset(4))
	if  != 0 {
		return ._tab.GetInt64( + ._tab.Pos)
	}
	return 0
}

// / The known dictionary id in the application where this data is used. In
// / the file or streaming formats, the dictionary ids are found in the
// / DictionaryBatch messages
func ( *DictionaryEncoding) ( int64) bool {
	return ._tab.MutateInt64Slot(4, )
}

// / The dictionary indices are constrained to be non-negative integers. If
// / this field is null, the indices must be signed int32. To maximize
// / cross-language compatibility and performance, implementations are
// / recommended to prefer signed integer types over unsigned integer types
// / and to avoid uint64 indices unless they are required by an application.
func ( *DictionaryEncoding) ( *Int) *Int {
	 := flatbuffers.UOffsetT(._tab.Offset(6))
	if  != 0 {
		 := ._tab.Indirect( + ._tab.Pos)
		if  == nil {
			 = new(Int)
		}
		.Init(._tab.Bytes, )
		return 
	}
	return nil
}

// / The dictionary indices are constrained to be non-negative integers. If
// / this field is null, the indices must be signed int32. To maximize
// / cross-language compatibility and performance, implementations are
// / recommended to prefer signed integer types over unsigned integer types
// / and to avoid uint64 indices unless they are required by an application.
// / By default, dictionaries are not ordered, or the order does not have
// / semantic meaning. In some statistical, applications, dictionary-encoding
// / is used to represent ordered categorical data, and we provide a way to
// / preserve that metadata here
func ( *DictionaryEncoding) () bool {
	 := flatbuffers.UOffsetT(._tab.Offset(8))
	if  != 0 {
		return ._tab.GetBool( + ._tab.Pos)
	}
	return false
}

// / By default, dictionaries are not ordered, or the order does not have
// / semantic meaning. In some statistical, applications, dictionary-encoding
// / is used to represent ordered categorical data, and we provide a way to
// / preserve that metadata here
func ( *DictionaryEncoding) ( bool) bool {
	return ._tab.MutateBoolSlot(8, )
}

func ( *DictionaryEncoding) () DictionaryKind {
	 := flatbuffers.UOffsetT(._tab.Offset(10))
	if  != 0 {
		return DictionaryKind(._tab.GetInt16( + ._tab.Pos))
	}
	return 0
}

func ( *DictionaryEncoding) ( DictionaryKind) bool {
	return ._tab.MutateInt16Slot(10, int16())
}

func ( *flatbuffers.Builder) {
	.StartObject(4)
}
func ( *flatbuffers.Builder,  int64) {
	.PrependInt64Slot(0, , 0)
}
func ( *flatbuffers.Builder,  flatbuffers.UOffsetT) {
	.PrependUOffsetTSlot(1, flatbuffers.UOffsetT(), 0)
}
func ( *flatbuffers.Builder,  bool) {
	.PrependBoolSlot(2, , false)
}
func ( *flatbuffers.Builder,  DictionaryKind) {
	.PrependInt16Slot(3, int16(), 0)
}
func ( *flatbuffers.Builder) flatbuffers.UOffsetT {
	return .EndObject()
}